ac874184d51c8d4a3f9ee81619fe6f115f294fe3,Launcher/source/client/ClientLauncher.java,ClientLauncher,addClientArgs,#Collection#ClientProfile#Params#,191
Before Change
}
if (pp.cloak != null) {
properties.put(CLOAK_URL_PROPERTY, new JSONArray(Collections.singleton(pp.cloak.url)));
properties.put(CLOAK_DIGEST_PROPERTY, new JSONArray(Collections.singleton(
SecurityHelper.toHex(pp.cloak.digest))));
}
Collections.addAll(args, "--userProperties", properties.toString());
After Change
}
if (pp.cloak != null) {
properties.add(CLOAK_URL_PROPERTY, Json.array(pp.cloak.url));
properties.add(CLOAK_DIGEST_PROPERTY, Json.array(SecurityHelper.toHex(pp.cloak.digest)));
}
Collections.addAll(args, "--userProperties", properties.toString(WriterConfig.MINIMAL));